home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / pentas20.zip / PENTAS20.EXE / SCRIPTS / TEST4.SCR < prev   
Text File  |  1997-08-20  |  2KB  |  53 lines

  1. START COMMENT
  2. ******************************************************************
  3. Test #4 Script written for Pentasim  
  4. This Script File is a good example of using the BATTLE command.
  5. ******************************************************************
  6. END COMMENT
  7. DISPLAY,2,7
  8. *`You stumble into what looks like an` `Arena` *`of some sort!  There is a`
  9. *`crowd of` `people` *`here and a man walks up to you and says...`
  10. DISPLAY,3,10
  11. *`"`}Looks like you're next on the list of competitors...Here is a list}
  12. }of the others.}*`"  He hands you a peice of` `paper` *`with some names` 
  13. *`written on it.`
  14. DISPLAY,2,14
  15. *`It seems you must` `battle` *`one of the` `people` *`on this list in order to`
  16. *`move on from here.`
  17. CHOICES,3
  18. START CHOICE,17
  19. CHOICE,1,`Death Machine`
  20. CHOICE,2,`Large Larry`
  21. CHOICE,3,`Groterious`
  22. END CHOICE
  23. INPUT,Choose Your Competitor:,21
  24. START DECISION
  25. 1
  26. BATTLE,Death Machine
  27. 2
  28. BATTLE,Large Larry 
  29. 3
  30. GOTO,FIGHTGROTERIOUS 
  31. END DECISION
  32. WAIT
  33. EXIT
  34. ROUTINE,FIGHTGROTERIOUS
  35. BATTLE,Groterious
  36. START COMMENT
  37. ***************************************************************************
  38. You will notice that the battling routine always ends up with....
  39. "You take so and so's Kroons"  Everyone has Kroons on them when you are
  40. battling them in Pentasim Scripting.  Have to reward the player with
  41. something, right? :)  The LAST line displayed, is ALWAYS displayed on
  42. line 14.  So if you would like to display something as in the example
  43. below, you can do so on the next line BEFORE clearing the screen if you 
  44. choose.
  45. ***************************************************************************
  46. END COMMENT
  47. DISPLAY,1,16
  48. It seems there is also another prize for beating `Grouterious`! 
  49. PAUSE,2
  50. GIVE,WIN
  51. WAIT
  52. EXIT
  53.